/-app ...
/-app/appRoot
PageModel.ts
dragScroll.ts
/-app/koBindingHandlers
/-app/moreDialog ...
Model.ts
layout.html
style.css
main.css
start.ts
/-docs
/-files
/-imports
/-persistence
/-typings
errors.js
functions.ts
index.html
try.js
38
 
1
.teapo-more-dialog-background {
2
  
3
  position: fixed;
4
  left: 0px; top: 0px;
5
  width: 100%; height: 100%;
6
  background: rgba(1,1,1,0.6);
7
  z-index: 200;
8
  
9
}
10
​
11
.teapo-more-dialog {
12
  
13
  position: fixed;
14
  left: 15%;
15
  width: 70%;
16
  top: 20%;
17
  height: 70%;
18
​
19
  background: gold;
20
​
21
}
22
​
23
.teapo-more-dialog-list {
24
  height: 80%;
25
  overflow: auto;
26
}
27
​
28
.teapo-more-dialog input {
29
  
30
  width: 100%;
31
  font-size: 200%;
32
  
33
}
34
​
35
.teapo-more-dialog .teapo-more-dialog-item .selected {
36
  background: cornflowerblue;
37
  color: white;
38
}
102:25